Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633451 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/66 - Text to Speech Converter

main.js cody/swapnilsparsh/30DaysOfJavaScript/66 - Text to Speech Converter/main.js
175 Views
0 Comments

const textarea = document.querySelector("textarea"),
voiceList = document.querySelector("select"),
speechButton = document.querySelector("button");

let synth = speechSynthesis,
isSpeaking = true;

styles.css cody/swapnilsparsh/30DaysOfJavaScript/66 - Text to Speech Converter/styles.css
127 Views
0 Comments

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
box-sizing: border-box;
margin:0;
padding :0;

index.html cody/swapnilsparsh/30DaysOfJavaScript/66 - Text to Speech Converter/index.html
316 Views
0 Comments
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Text to Speech Converter</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>